From a703ba840627aca867ab4f44dadbb962035a90fe Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 14 Oct 2016 11:15:27 -0400 Subject: [PATCH] Avoid 0/FALSE confusion Since this is supposedly exemplary code, lets get it right. https://bugzilla.gnome.org/show_bug.cgi?id=772683 --- demos/gtk-demo/glarea.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/gtk-demo/glarea.c b/demos/gtk-demo/glarea.c index 715b06774a..b51e4ae1fe 100644 --- a/demos/gtk-demo/glarea.c +++ b/demos/gtk-demo/glarea.c @@ -333,7 +333,7 @@ create_axis_slider (int axis) GtkAdjustment *adj; const char *text; - box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, FALSE); + box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); switch (axis) { -- 2.30.2